home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 526-550 / disk_536 / wfile / src.lzh / wfile.h < prev    next >
C/C++ Source or Header  |  1991-08-23  |  1KB  |  48 lines

  1. /***************************************************************************
  2. * wfile.h: header file for wfile.c, includes #defines etc.           *
  3. *                                       *
  4. * created: Oct 1990 Mtwx                           *
  5. ***************************************************************************/
  6.  
  7. /* --------------------- source code revisions, tracked by RCS ---------- */
  8.  
  9. /* $Header: Hard0:C-Compiler/src/wfile/rcs/wfile.h,v 1.0 91/08/12 20:29:24 Mtwx Exp $ */
  10. /* $Log:    wfile.h,v $
  11.  * Revision 1.0  91/08/12  20:29:24  Mtwx
  12.  * Initial revision
  13.  *  */
  14.  
  15. /* ------------------------------- define Options ---------------------- */
  16.  
  17. #define ADDCR 1
  18. #define REMCR 2
  19. #define EXPTABS 4
  20. #define SHRSPACE 8
  21. #define CHANGE_FOREIGN 16
  22. #define NO_BACKUP 32
  23. #define REAL_NULL 64
  24. #define ADD_FINAL_CHR 128
  25.  
  26. /* ------------------------------- define defaults --------------------- */
  27.  
  28. #ifdef AMIGA
  29. #define CRMODE ADDCR
  30. #define CRTEXT "ADDCR"
  31. #define LINES 23
  32. #endif
  33. #ifdef UNIX
  34. #define CRMODE ADDCR
  35. #define CRTEXT "ADDCR"
  36. #define LINES 22
  37. #endif
  38. #ifdef MSDOS
  39. #define CRMODE REMCR
  40. #define CRTEXT "REMCR"
  41. #define LINES 23
  42. #endif
  43. #define TABSIZE 8
  44. #define TABMODE SHRSPACE
  45. #define TABTEXT "SHRINK SPACES TO TABS"
  46. #define MAXCHANGE 26
  47. #define MAXOPTIONS 100
  48.